home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / ans37a.zip / TREETEST.CFG < prev    next >
Text File  |  1993-05-23  |  5KB  |  117 lines

  1. CodeDir        c:\vmc\code\    ; directory in which to write the code file
  2.                 ; for the givecode function
  3. ; ANSWER.EXE Voice Mail System
  4. ;
  5. ; TREE.CFG  Information Server Configuration File
  6. ;
  7. ; This file is simply an example.  Your operating file MUST be renamed to
  8. ; TREE.CFG for the Information Server to become operational.  You will have
  9. ; to record the messages that you wish to use here.
  10. ;
  11. ; This is an example of the configuration file for operating ANSWER in the
  12. ; Information Server Mode.  The .bin files that appear in this file must be
  13. ; placed in the OGM directory (see Options/Directory/OGM).  Any line in this
  14. ; file beginning with a semi-colon is considered a comment and is ignored.
  15. ; White space characters (spaces and tabs) and anything appearing after the
  16. ; semi-colon on non-comment line are also ignored.  The syntax of this file
  17. ; is strict and must not be violated.  You are permitted to use tabs and
  18. ; comments.
  19. ;
  20. ; The Information Server begins by playing the message mainmenu.bin.  This
  21. ; message should prompt the caller for one of several touch tone responses.
  22. ; The caller can enter 1 through 9, or enter one of the following:
  23. ;
  24. ; 0 returns to mainmenu, * (11) aborts, # (12) returns to root
  25. ;
  26. ; Under the mainmenu.bin entry below, you will have indented lines which will 
  27. ; list the valid numbers which the caller can press.  The lines are indented,
  28. ; contain the number of the response, a comma, a space, then the name of the
  29. ; message which will be played when the caller enters that response.  If you
  30. ; wish that message to prompt the caller for additional responses, then you
  31. ; may list that message name below the mainmenu.bin and its indented list,
  32. ; followed by a list of its own.  In the example below, vmc.bin is listed
  33. ; as option number 1.  If the caller presses 1, then the Information Server
  34. ; will branch to the vmc.bin menu.  The caller can then press 1 for
  35. ; vmcdesc.bin or 2 for vmcnext.bin.  Proceeding in this fashion, you may
  36. ; continue to make branches to many different menus.
  37. ;
  38. ; These following two files are expected to be found by the Information Server
  39. ; in the OGM directory along with the other .bin files that you add here.
  40. ;
  41. ; mainmenu.bin    (this is the root menu which is presented first)
  42. ; bye.bin    (this menu is the last one before hanging up)
  43. ;
  44. ; Each of the following is a listing of the sequence to be followed by messages
  45. ; that are called from the first line above.  Under each message is a number, 
  46. ; a comma and space, then the next message to be branched to in response to the
  47. ; indicated number.  Branching may be forward and/or backward.
  48. ;
  49. ; getcode is a special keyword.  It must have two parameters following it,
  50. ; each separated by a space character.  The first is a number from 1 to 99 and
  51. ; specifies how many numbers the caller will be prompted for.  The second is
  52. ; the filename to which to save the number received from the caller.
  53. ;
  54. ; givecode is a special keyword.  It will generate an 8-digit ramdom unique
  55. ; code and save it to a text database called GIVECODE.DAT.  It will then say
  56. ; the code, and prompt the caller to play the code again or not.  Then a
  57. ; file <code>.log will be saved to a specified directory and will contain
  58. ; the date, time, and code given to the caller.
  59. ;
  60. ; vmail is a special keyword which will cause invocation of the voice mail
  61. ; box menu.  When the voice mail box operation is completed, control is
  62. ; returned to the information server.
  63. ;
  64. mainmenu.bin            ; Lists all messages available
  65.     1, vmc.bin            ; branch to vmc.bin submenu
  66.     2, cygnus.bin            ; branch to cygnus.bin submenu
  67.     3, playback.bin            ; branch to playback.bin submenu
  68.     4, record.bin            ; branch to record.bin submenu
  69.     5, remote.bin            ; branch to remote.bin submenu
  70.     6, givecode.bin
  71.     10, bye.bin            ; exit Information Server
  72. ;
  73. ; The following two messages are submenus which may be called from above
  74. ;
  75. vmc.bin                ; Information on the Voice Mail Card
  76.     1, vmcdesc.bin
  77.     2, vmcnext.bin
  78.     10, mainmenu.bin
  79. cygnus.bin            ; Information on Perspective BBS
  80.     1, persdesc.bin
  81.     2, persvmc.bin
  82.     10, mainmenu.bin
  83. ;
  84. ; The following messages are played, then no prompt for a touch tone is made
  85. ; since options 1 through 9 are not listed.  Instead, a branch is made back
  86. ; to the menu which branched here (it will play the message then return).
  87. ;
  88. vmcdesc.bin            ; Description of the Voice Mail Card
  89.     10, mainmenu.bin
  90.     12, vmc.bin
  91. vmcnext.bin            ; What's next for the VMC
  92.     10, mainmenu.bin
  93.     12, vmc.bin
  94. persdesc.bin            ; Description of Perspective BBS
  95.     10, mainmenu.bin
  96.     12, cygnus.bin
  97. persvmc.bin            ; Integration of the VMC with Perspective
  98.     10, mainmenu.bin
  99.     12, cygnus.bin
  100. playback.bin            ; just for sample purposes
  101.     playback
  102.     10, mainmenu.bin
  103. record.bin            ; return to mainmenu after
  104.     record            ; recording a message
  105.     10, mainmenu.bin
  106. remote.bin
  107.     remote            ; enter remote programming mode
  108.     10, mainmenu.bin
  109. givecode.bin
  110.     givecode
  111.     10, mainmenu.bin
  112. ;
  113. ; The program branches here when the caller is finished.
  114. ;
  115. bye.bin                ; just say bye
  116.     exit            ; and hangup
  117.